home *** CD-ROM | disk | FTP | other *** search
- #
- # Watcom makefile for FROM [Win16]
- # Requires WIL16.DLL & WIL16.LIB
- #
- # TO MAKE: wmake -f from16._W_
- #
-
- CCFLAGS = -c -oaxt -d2 -w4 -zW
-
- OBJS = from.obj about.obj paint.obj str.obj
-
- from.exe: $(OBJS) from.res from.def see16.lib
- wlink @from16.lnk
- wrc from.res
-
- from.res: $(OBJS) from.rc
- wrc -r -bt=windows from.rc
-
- about.obj: about.c about.h
- wcl $(CCFLAGS) about.c
-
- paint.obj: paint.c paint.h see.h
- wcl $(CCFLAGS) paint.c
-
- from.obj: from.c see.h
- wcl $(CCFLAGS) from.c
-
- str.obj: str.c str.h see.h
- wcl $(CCFLAGS) str.c
-